home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / Python1.4_Source / Objects / protos / methodobject_protos.h < prev    next >
Text File  |  1998-06-24  |  344b  |  9 lines

  1.  
  2. /* methodobject.c */
  3. static void meth_dealloc ( methodobject *m );
  4. static object *meth_getattr ( methodobject *m , char *name );
  5. static object *meth_repr ( methodobject *m );
  6. static int meth_compare ( methodobject *a , methodobject *b );
  7. static long meth_hash ( methodobject *a );
  8. static object *listmethodchain ( struct methodchain *chain );
  9.